home *** CD-ROM | disk | FTP | other *** search
/ Aminet 6 / Aminet 6 - June 1995.iso / Aminet / gfx / 3d / irit50src.lha / irit5 / include / imalloc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-09-22  |  597 b   |  23 lines

  1. /******************************************************************************
  2. * All mallocs from irit modules should be piped through this allocator.       *
  3. *                                          *
  4. *                     Written by Gershon Elber, April 1993 *
  5. ******************************************************************************/
  6.  
  7. #ifndef IMALLOC_H
  8. #define IMALLOC_H
  9.  
  10. #if defined(__cplusplus) || defined(c_plusplus)
  11. extern "C" {
  12. #endif
  13.  
  14. void IritTestAllDynMemory(int PrintAlloc);
  15. VoidPtr IritMalloc(unsigned size);
  16. void IritFree(VoidPtr p);
  17.  
  18. #if defined(__cplusplus) || defined(c_plusplus)
  19. }
  20. #endif
  21.  
  22. #endif /* IMALLOC_H */
  23.